home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / Libraries / Events / Event Classes / Window Events / UpdateEvent.cp < prev    next >
Text File  |  1997-06-28  |  196b  |  14 lines

  1. // UpdateEvent.cp
  2.  
  3. #ifndef UpdateEvent_h
  4. #include "UpdateEvent.h"
  5. #endif
  6. #ifndef AbstractWindow_h
  7. #include "AbstractWindow.h"
  8. #endif
  9.  
  10. void UpdateEvent::Respond() const
  11.   {
  12.     Window().Update();
  13.   }
  14.